@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;1000&display=swap");
* {
	font-family: "Nunito", sans-serif;
	margin: 0;
	box-sizing: border-box;
}
body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
body:has(#navToggle:checked) aside {
	right: 0;
}
body:has(#navToggle:checked) .bar {
	top: initial;
	bottom: initial;
}
body:has(#navToggle:checked) .bar:nth-of-type(1) {
	transform: rotate(45deg);
}
body:has(#navToggle:checked) .bar:nth-of-type(2) {
	opacity: 0;
}
body:has(#navToggle:checked) .bar:nth-of-type(3) {
	transform: rotate(-45deg);
}
nav {
	width: 100%;
	height: 60px;
	background-color: #412da5;
	box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
	padding: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 4;
}
nav > .brand {
	font-size: 2rem;
	font-weight: 1000;
	text-decoration: none;
	color: #283618;
}
nav > .input-group > input {
	background-color: transparent;
	border: none;
	outline: none;
	font-size: 1.2rem;
	width: 150px;
	color: #283618;
}
nav > .input-group > i {
	color: #283618;
}
.toggle {
	width: 30px;
	height: 30px;
	margin-right: 70px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
}
.bar {
	width: 100%;
	height: 2px;
	background-color: #000;
	position: absolute;
	transition: all 0.3s;
}
.bar:nth-of-type(1) {
	top: 5px;
}
.bar:nth-of-type(2) {
	bottom: 5px;
}
#navToggle {
	-webkit-appearance: none;
	display: block;
	width: 30px;
	height: 30px;
	position: absolute;
	z-index: 3;
	cursor: pointer;
}

main {
	/* 	opacity:0; */
	padding: 20px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.content,
.img {
	width: 45%;
}
.icon {
	width: 100px;
	height: 100px;
	font-size: 3rem;
	border-radius: 50rem;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #eefae0;
	color: #283618;
	margin-bottom: 10px;
}
.content h1 {
	font-size: 3rem;
}
.content .lead {
	font-size: 1.2rem;
	margin-bottom: 15px;
}
.content button {
	background-color: #e0f7fa;
	color: #00d8d1;
	border: none;
	padding: 10px 15px;
	display: block;
	margin-top: 30px;
	font-size: 1.2rem;
	cursor: pointer;
	transition: all 0.3s;
}
.content button i {
	margin-left: 10px;
}
.content button:hover {
	background-color: #00b2c2;
	color: #fefae0;
}
.img img {
	width: 627px;
	height: 400px;
	border-radius: 5px;

}

ul {
    display: flex;
    justify-content: center;
  }

.img2 img {
	width: 80px;
	height: 80px;
	margin: 5px;
}

.img3 img {
	width: 80px;
	height: 80px;
	margin: 5px;
	filter: grayscale(100%);
}


footer {
	width: 100%;
	background-color: #412da5;
	box-shadow: 0 -3px 3px 0 rgba(0, 0, 0, 0.2);
	padding: 10px;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	position: relative;
	z-index: 4;
}

aside {
	position: fixed;
	top: 0;
	right: -300px;
	width: 300px;
	height: 100vh;
	background-color: #eefae0;
	transition: right 0.3s;
	padding: 100px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
aside a i {
	margin-right: 10px;
}
aside a {
	font-size: 1.1rem;
	color: #283618;
	text-decoration: none;
	position: relative;
	height: 30px;
	margin: 10px 0;
	display: inline-block;
}
aside a::before {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #283618;
	transform: scaleX(0);
	transition: transform 0.3s;
}
aside a:hover::before {
	transform: scaleX(1);
}
